-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Add protected pprint.PrettyPrinter methods #14228
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Added more protected methods
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm sorry for the late response. Comments below.
This comment has been minimized.
This comment has been minimized.
def _pprint_frozenset( | ||
self, | ||
object: frozenset[object], | ||
stream: SupportsWrite[str], | ||
indent: int, | ||
allowance: int, | ||
context: dict[int, int], | ||
level: int, | ||
) -> None: ... |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This method doesn't seem to exist in any Python version I've checked.
According to mypy_primer, this change has no effect on the checked open source code. 🤖🎉 |
Protected method types are needed for sub-classing support. Else mypy complains like:
"PrettyPrinter" has no attribute "_format_dict_items"
.